home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / INCLUDE.ARC / TIME.H < prev   
C/C++ Source or Header  |  1984-10-26  |  529b  |  30 lines

  1. /*    time.h - definitions for time functions.
  2.     (C) Copyright 1983 Gregory R. Mansfield - All Rights Reserved.
  3.     G. R. Mansfield.  83/11/27.
  4.     Ver 1.2-4A26.
  5. */
  6.     
  7.  
  8. #ifndef time.h        /* allow several more than 1 include of this file */
  9. #define time.h
  10.  
  11. struct tm {
  12.     int tm_sec;
  13.     int tm_min;
  14.     int tm_hour;
  15.     int tm_mday;
  16.     int tm_mon;
  17.     int tm_year;
  18.     int tm_wday;
  19.     int tm_yday;
  20.     int tm_isdst;
  21. };
  22.  
  23. char *asctime(tm);
  24. char *cclock(clock);
  25. char *ctime(clock);
  26. char *ddate(clock);
  27. struct tm *localtime(clock);
  28.  
  29. #endif
  30.